com.sabro.jbusiness.sys
Enum SysEscopo.SysEscopoEventType

java.lang.Object
  extended by java.lang.Enum<SysEscopo.SysEscopoEventType>
      extended by com.sabro.jbusiness.sys.SysEscopo.SysEscopoEventType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SysEscopo.SysEscopoEventType>
Enclosing class:
SysEscopo

public static enum SysEscopo.SysEscopoEventType
extends java.lang.Enum<SysEscopo.SysEscopoEventType>


Enum Constant Summary
PROCESS_LOADED
          Disparado quando o processo é carregado em Clc
PROCESS_RELEASED
          Disparado quando o processo é descarregado de Clc
PROCESS_SAVED
          Disparado quando o processo é salvo nas tabelas definitivas
SYSESCOPO_CLOSE
          Disparado quando o SysEscopo é selecionado
SYSESCOPO_REORDER
          Disparado quando o SysEscopo é selecionado
SYSESCOPO_SELECTED
          Disparado quando o SysEscopo é selecionado
SYSREGISTRO_ADDED
          Disparado quando um registro é adicionado
SYSREGISTRO_INVALIDATED
          Disparado quando os valores de um registro são invalidados
SYSREGISTRO_REMOVED
          Disparado quando um registro é excluido
SYSREGISTRO_SELECTED
          Disparado quando um registro é selecionado
SYSREGISTRO_UPDATED
          Disparado quando um registro é alterado
SYSREGISTRO_WILLUNSELECT
          Disparado quando um registro será deselecionado
SYSREGISTROS_INVALIDATED
          Disparado quando o conjunto de registros é recarregado
SYSREGISTROS_MOVED
          Disparado quando o conjunto de registros é movido
SYSREGISTROS_REVALIDATED
          Disparado quando o conjunto de registros é recarregado
 
Method Summary
static SysEscopo.SysEscopoEventType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SysEscopo.SysEscopoEventType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SYSREGISTRO_INVALIDATED

public static final SysEscopo.SysEscopoEventType SYSREGISTRO_INVALIDATED
Disparado quando os valores de um registro são invalidados


SYSREGISTRO_ADDED

public static final SysEscopo.SysEscopoEventType SYSREGISTRO_ADDED
Disparado quando um registro é adicionado


SYSREGISTRO_REMOVED

public static final SysEscopo.SysEscopoEventType SYSREGISTRO_REMOVED
Disparado quando um registro é excluido


SYSREGISTRO_WILLUNSELECT

public static final SysEscopo.SysEscopoEventType SYSREGISTRO_WILLUNSELECT
Disparado quando um registro será deselecionado


SYSREGISTRO_SELECTED

public static final SysEscopo.SysEscopoEventType SYSREGISTRO_SELECTED
Disparado quando um registro é selecionado


SYSREGISTRO_UPDATED

public static final SysEscopo.SysEscopoEventType SYSREGISTRO_UPDATED
Disparado quando um registro é alterado


SYSREGISTROS_INVALIDATED

public static final SysEscopo.SysEscopoEventType SYSREGISTROS_INVALIDATED
Disparado quando o conjunto de registros é recarregado


SYSREGISTROS_REVALIDATED

public static final SysEscopo.SysEscopoEventType SYSREGISTROS_REVALIDATED
Disparado quando o conjunto de registros é recarregado


SYSREGISTROS_MOVED

public static final SysEscopo.SysEscopoEventType SYSREGISTROS_MOVED
Disparado quando o conjunto de registros é movido


PROCESS_LOADED

public static final SysEscopo.SysEscopoEventType PROCESS_LOADED
Disparado quando o processo é carregado em Clc


PROCESS_RELEASED

public static final SysEscopo.SysEscopoEventType PROCESS_RELEASED
Disparado quando o processo é descarregado de Clc


PROCESS_SAVED

public static final SysEscopo.SysEscopoEventType PROCESS_SAVED
Disparado quando o processo é salvo nas tabelas definitivas


SYSESCOPO_SELECTED

public static final SysEscopo.SysEscopoEventType SYSESCOPO_SELECTED
Disparado quando o SysEscopo é selecionado


SYSESCOPO_CLOSE

public static final SysEscopo.SysEscopoEventType SYSESCOPO_CLOSE
Disparado quando o SysEscopo é selecionado


SYSESCOPO_REORDER

public static final SysEscopo.SysEscopoEventType SYSESCOPO_REORDER
Disparado quando o SysEscopo é selecionado

Method Detail

values

public static SysEscopo.SysEscopoEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SysEscopo.SysEscopoEventType c : SysEscopo.SysEscopoEventType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SysEscopo.SysEscopoEventType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null